home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wsc4vb24 / uinstall.bat < prev    next >
DOS Batch File  |  1999-05-31  |  603b  |  35 lines

  1. @echo off
  2. REM
  3. REM un-install script for WSC4VB (5/31/99).
  4. REM
  5. if (%windir%) == () goto WIN31
  6.  
  7. if not exist %windir%\WSC16.DLL goto TEST2
  8. echo Delete %windir%\WSC16.DLL ?
  9. pause
  10. del %windir%\WSC16.DLL
  11.  
  12. :TEST2
  13. if not exist %windir%\WSC32.DLL goto DONE
  14. echo Delete %windir%\WSC32.DLL ?
  15. pause
  16. del %windir%\WSC32.DLL
  17. goto DONE
  18.  
  19. :WIN31
  20.  
  21. if not exist C:\WINDOWS\WSC16.DLL goto TEST4
  22. echo Delete C:\WINDOWS\WSC16.DLL ?
  23. pause
  24. del C:\WINDOWS\WSC16.DLL
  25.  
  26. :TEST4
  27. if not exist C:\WINDOWS\WSC32.DLL goto DONE
  28. echo Delete C:\WINDOWS\WSC32.DLL ?
  29. pause
  30. del C:\WINDOWS\WSC32.DLL
  31.  
  32. :DONE
  33.  
  34.  
  35.